home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #1 / Cd 1 (black) - 2001.iso / K-CS.dcr / 00523.ls < prev    next >
Encoding:
Text File  |  2000-11-15  |  432 b   |  19 lines

  1. global BlinkObjekt, taeller
  2.  
  3. on new me
  4.   set taeller to the ticks
  5.   set BlinkObject to 0
  6.   set the locH of sprite 99 to 780
  7.   set BlinkObjekt to new(script "Blink")
  8. end
  9.  
  10. on exitFrame
  11.   checkBlink(BlinkObjekt)
  12.   if ((the ticks - taeller) / 50) > 32 then
  13.     set taeller to the ticks
  14.   end if
  15.   set newSprite to 925 - ((the ticks - taeller) / 50)
  16.   set the member of sprite 105 to member newSprite of castLib "VConst"
  17.   go(#loop)
  18. end
  19.